.bannerImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.7));
}

.central-conteudo {
    background-color: #fff;
    position: relative;
    width: 100%;
    padding: 6% 4% 0 11%;
}

.central-conteudo::before {
    content: '';
    background-image: url(../images/central-conteudo-arcos.svg);
    background-position: right top;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 421px;
    height: 211px;
}

.box-container {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding-bottom: 90px;
}

.box-container .icon {
    width: 135px;
    height: 135px;
}

.box-info .title {
    font-family: 'Mohr-BlackIt', sans-serif;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
    color: #021f59;
    margin-top: 18px;
}

.box-info .text {
    font-family: 'Mohr-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.29px;
    text-align: left;
    color: #707070;
    width: 85%;
}

.group-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.group-links .custom-link {
    min-width: 150px;
    padding: 11px 38px;
    border-radius: 6px;
    border: 1px solid #fff;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    font-size: 11px;
    font-family: 'Mohr-SemiBold', sans-serif;
    font-weight: 600;
    text-align: center;
    color: #00bf44;
    text-transform: uppercase;
}

.group-links .custom-link:hover {
    border: 1px solid #00bf44;
    background-color: rgb(0, 189, 66, 0.1);
}

@media screen and (max-width: 1024px) {
    .central-conteudo::before {
        width: 380px;
        height: 199px;
    }
}

@media screen and (min-width: 768px) and (max-width:820px) {
    .central-conteudo {
        padding-top: 15%;
    }
}

@media screen and (max-width: 768px) {
    .central-conteudo {
        padding-top: 15%;
    }

    .central-conteudo::before {
        width: 300px;
        height: 157px;
    }



}

@media screen and (max-width: 640px) {


    .box-container {
        flex-direction: column;
        gap: 10px;
        /* align-items: center; */
    }

    .box-container .icon {
        width: 100px;
        height: 100px;
    }

    .box-info .title {
        font-size: 45px;
        /* text-align: center; */
    }
}

@media screen and (max-width: 425px) {


    .central-conteudo::before {
        width: 200px;
        height: 102px;
    }

    .group-links .custom-link {
        width: 100%;
    }

    .central-conteudo {
        padding: 6%;
    }
}

@media screen and (max-width: 375px) {
    .central-conteudo::before {
        width: 200px;
        height: 102px;
    }

    .box-container .icon {
        width: 80px;
        height: 80px;
    }

    .box-info .title {
        font-size: 35px;
    }

    .box-info .text {
        width: 100%;
    }
}